home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webdriver.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  57 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10592);
  10.  script_bugtraq_id(2166);
  11.  script_version ("$Revision: 1.12 $");
  12.  name["english"] = "webdriver";
  13.  name["francais"] = "webdriver";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "The 'webdriver' cgi is installed. This CGI usually
  17. lets anyone access the Informix databases of the hosts that run it.
  18.  
  19. *** Warning : Nessus solely relied on the presence of this CGI, it did not
  20. *** determine if you specific version is vulnerable to that problem
  21.  
  22. Solution : remove it from /cgi-bin.
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the presence of /cgi-bin/webdriver";
  31.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/webdriver";
  32.  
  33.  script_summary(english:summary["english"], francais:summary["francais"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  39.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53. port = get_http_port(default:80);
  54.  
  55. res = is_cgi_installed_ka(port:port, item:"webdriver");
  56. if(res)security_warning(port);
  57.